diff options
author | Alan Brault <alan.brault@incruentatus.net> | 2010-12-09 19:42:11 -0500 |
---|---|---|
committer | Alan Brault <alan.brault@incruentatus.net> | 2010-12-09 19:42:11 -0500 |
commit | 6b031a2ba7c024b674a9736a87a9dedde279beab (patch) | |
tree | 26083a24ce525ee29bc3146ecd1ae63436e9be92 /configure.in | |
parent | 1768860358ca4d1f520821f754750a2781abfce6 (diff) | |
download | NetNuke2-6b031a2ba7c024b674a9736a87a9dedde279beab.tar.gz |
Enable cross compiling support to NetNuke
Add buildconf to make the process of rebuilding all the bootstrapping files easier
Add files AUTHORS, INSTALL, ChangeLog, NEWS, COPYING (renamed LICENSE) and compile to satisfy automake
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.in b/configure.in index f93934f..5753102 100644 --- a/configure.in +++ b/configure.in @@ -2,15 +2,13 @@ AC_PREREQ([2.66]) AC_INIT([NetNuke], [2.0.2], [jhunkeler@gmail.com], [netnuke], [https://github.com/jhunkeler/NetNuke]) AM_INIT_AUTOMAKE(1.11.1) -AC_CONFIG_SRCDIR([src/netnuke.c]) +AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADERS([config.h]) -# Compile with safe optimizations and no debugging by default -CFLAGS="-Os" - # Check for programs. AC_PROG_AWK AC_PROG_CC +AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET |