This website requires JavaScript.
Explore
Help
Sign In
mirror
/
json-c
Watch
1
Star
0
Fork
0
You've already forked json-c
mirror of
https://github.com/json-c/json-c.git
synced
2026-04-01 19:39:07 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
77c623946517cdfe2eb80ea1e7b0ad6752216667
json-c
/
autogen.sh
6 lines
106 B
Bash
Raw
Normal View
History
Unescape
Escape
autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1 First, we should be able to execute as "./autogen.sh". Second, add support for NOCONFIGURE=1. For more information, see http://people.gnome.org/~walters/docs/build-api.txt
2012-07-11 15:33:49 -04:00
#!/bin/sh
* Make headers C++ compatible by change *this to *obj * Add ifdef C++ extern "C" to headers * Use simpler definition of min and max in bits.h Larry Lansing, llansing at fuzzynerd dot com * Remove automake 1.6 requirement * Move autogen commands into autogen.sh. Update README * Remove error pointer special case for Windows * Change license from LGPL to MIT Michael Clark <michael@metaparadigm.com> git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@10 327403b1-1117-474d-bef2-5cb71233fd97
2007-03-13 08:26:23 +00:00
autoreconf -v --install
||
exit
1
autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1 First, we should be able to execute as "./autogen.sh". Second, add support for NOCONFIGURE=1. For more information, see http://people.gnome.org/~walters/docs/build-api.txt
2012-07-11 15:33:49 -04:00
if
test
-z
"
$NOCONFIGURE
"
;
then
exec
./configure
"
$@
"
fi
Reference in New Issue
Copy Permalink