]> saetta.ns0.it Git - zakaudit/libzakaudit/commitdiff
Changes to autotools to compile on windows.
authorAndrea Zagli <azagli@libero.it>
Mon, 31 May 2010 15:39:58 +0000 (17:39 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 31 May 2010 15:39:58 +0000 (17:39 +0200)
config.h.in [new file with mode: 0644]
configure.ac
src/Makefile.am

diff --git a/config.h.in b/config.h.in
new file mode 100644 (file)
index 0000000..147079b
--- /dev/null
@@ -0,0 +1,68 @@
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+#undef HAVE_DLFCN_H
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#undef HAVE_INTTYPES_H
+
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#undef HAVE_STDINT_H
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#undef HAVE_STDLIB_H
+
+/* Define to 1 if you have the <strings.h> header file. */
+#undef HAVE_STRINGS_H
+
+/* Define to 1 if you have the <string.h> header file. */
+#undef HAVE_STRING_H
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#undef HAVE_SYS_STAT_H
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#undef HAVE_SYS_TYPES_H
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#undef HAVE_UNISTD_H
+
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+   */
+#undef LT_OBJDIR
+
+/* Name of package */
+#undef PACKAGE
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Define to 1 if you have the ANSI C header files. */
+#undef STDC_HEADERS
+
+/* Define to 1 if your <sys/time.h> declares `struct tm'. */
+#undef TM_IN_SYS_TIME
+
+/* Version number of package */
+#undef VERSION
+
+/* Define to empty if `const' does not conform to ANSI C. */
+#undef const
index 2fcc9a24a4a3ffa4eaa82aef9f1455576a2609f4..75cff57241f7228b8b5055f1afd9df5fd878c01e 100644 (file)
@@ -4,11 +4,15 @@
 AC_PREREQ(2.59)
 AC_INIT([libaudit], [0.0.1], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/audit.c])
+AC_CONFIG_HEADER([config.h])
 
 AM_INIT_AUTOMAKE
 
 AM_MAINTAINER_MODE
 
+AC_CANONICAL_SYSTEM
+AC_LIBTOOL_WIN32_DLL
+
 # Checks for programs.
 AC_PROG_CC
 AC_PROG_LIBTOOL
index f13a0b1061c2fec76afbda6901576a2c5a7cfdf0..145309189163bb03957c9c6697e9402083dcc1e1 100644 (file)
@@ -9,5 +9,7 @@ lib_LTLIBRARIES = libaudit.la
 libaudit_la_SOURCES = \
         audit.c
 
+libaudit_la_LDFLAGS = -no-undefined
+
 include_HEADERS = \
         libaudit.h