File: configure.ac

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-10
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,332 kB
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (22 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AC_INIT([CIGI Class Library], [3.3.2], 
        [http://cigi.sourceforge.net], 
        [cigicl])
AM_INIT_AUTOMAKE
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LIBTOOL

# check the endian-ness of the compiling machine
AC_C_BIGENDIAN
# the variable ac_cv_c_bigendian is defined by the AC_C_BIGENDIAN macro
if test $ac_cv_c_bigendian = no; then
  # the following will append a -D argument to the compiler's argument list   
  AC_DEFINE(CIGI_LITTLE_ENDIAN)
fi

AC_CONFIG_FILES([
	cigicl.pc
	Makefile
	include/Makefile
	source/Makefile])
AC_OUTPUT