]> git.pld-linux.org Git - packages/irssi.git/blame - irssi-am_ac.patch
- workaround for gettext
[packages/irssi.git] / irssi-am_ac.patch
CommitLineData
13117eda
AM
1diff -urN irssi-0.7.98.4.org/configure.in irssi-0.7.98.4/configure.in
2--- irssi-0.7.98.4.org/configure.in Tue Sep 11 23:32:08 2001
3+++ irssi-0.7.98.4/configure.in Tue Sep 11 23:53:17 2001
4@@ -9,28 +9,7 @@
5 AC_PROG_CC
6 AC_PROG_CPP
7 AC_STDC_HEADERS
8-AC_ARG_PROGRAM
9-AM_PROG_LIBTOOL
10-
11-dnl * ahem.. :) we don't want static libraries for modules
12-if test "x$lt_target" = "x"; then
13- if test "$target" = "NONE"; then
14- lt_target="$host"
15- else
16- lt_target="$target"
17- fi
18-fi
19-dnl * --disable-static isn't a good idea, complain if it's used
20-if test "x$enable_static" = "xno"; then
21- AC_ERROR([Don't give --disable-static option to configure])
22-fi
23-
24-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
25-$libtool_flags --disable-static --output=libtool-shared --no-verify $ac_aux_dir/ltmain.sh $lt_target \
26-|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
27-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
28-$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
29-|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
30+AC_PROG_LIBTOOL
31
32 AC_CHECK_HEADERS(string.h stdlib.h unistd.h dirent.h sys/ioctl.h libintl.h)
33
34@@ -341,60 +320,7 @@
35
36 PROG_LIBS="$PROG_LIBS $GLIB_LIBS"
37
38-dnl **
39-dnl ** check if we can link dynamic libraries to modules
40-dnl ** also checks if libraries are built to .libs dir
41-dnl **
42-
43-AC_MSG_CHECKING([if we can link dynamic libraries with modules])
44-DYNLIB_MODULES=no
45-
46-dnl ** compile object file
47-cat > conftest.c <<EOF
48-#include <math.h>
49-int modfunc(void){return (int)floor(1.2);}
50-EOF
51-./libtool --mode=compile $CC $CFLAGS -c conftest.c 2> /dev/null > /dev/null
52-if test ! -s conftest.lo; then
53- AC_ERROR([error compiling test module])
54-fi
55-
56-dnl ** link to library
57-./libtool --mode=link $CC $CFLAGS $LDFLAGS -rpath /usr/lib conftest.lo -lm -o libconftest.la > /dev/null
58-if test ! -s .libs/libconftest.a; then
59- AC_ERROR([error, can't even find .a library])
60-fi
61-
62-dnl ** check if dynamic linking worked
63-libfile=`grep ^library_names libconftest.la|$sedpath "s/library_names='\(.*\)'.*/\1/"|$sedpath 's/.* \([[^ ]]*\)$/\1/'`
64-if test ! -s .libs/$libfile; then
65- AC_MSG_RESULT([no, error linking test module])
66-else
67- cat > conftest.c <<EOF
68-#include <gmodule.h>
69-main() {
70-GModule *m; int (*modfunc)(void);
71-m = g_module_open(".libs/$libfile", 0);
72-if (!m) g_print("error loading: %s", g_module_error());
73-else if (!g_module_symbol(m, "modfunc", (gpointer *) &modfunc))
74- g_print("modfunc() symbol not found from module");
75-else if (modfunc() == 1) g_print("ok"); else g_print("wrong result?! 1 vs %d", modfunc());
76-return 0; }
77-EOF
78- $CC $CFLAGS conftest.c -o conftest $GLIB_CFLAGS $GLIB_LIBS 2> /dev/null > /dev/null
79- if test ! -s conftest; then
80- AC_MSG_RESULT([no, error compiling test program])
81- else
82- status="`./conftest`"
83- if test "x$status" = "xok"; then
84- DYNLIB_MODULES=yes
85- AC_MSG_RESULT([yes])
86- else
87- AC_MSG_RESULT([no, error running: $status])
88- fi
89- fi
90-fi
91-rm -rf conftest conftest.* libconftest.* .libs
92+DYNLIB_MODULES=yes
93
94 dnl **
95 dnl ** curses checks
96diff -urN irssi-0.7.98.4.org/curses.m4 irssi-0.7.98.4/curses.m4
97--- irssi-0.7.98.4.org/curses.m4 Tue Sep 11 23:32:09 2001
98+++ irssi-0.7.98.4/curses.m4 Wed Sep 12 00:10:58 2001
99@@ -210,8 +210,7 @@
100 AC_MSG_RESULT(Found ncurses on $1/$2)
101
102 CURSES_LIBS="$3"
103- AC_CHECK_LIB(ncurses, initscr, [
104- ], [
105+ AC_CHECK_LIB(ncurses, initscr,, [
106 CHECKLIBS=`echo "$3"|sed 's/-lncurses/-lcurses/g'`
107 AC_CHECK_LIB(curses, initscr, [
108 CURSES_LIBS="$CHECKLIBS"
This page took 0.043806 seconds and 4 git commands to generate.