Gentoo Archives: gentoo-commits

From: "William Thomson (wltjr)" <wltjr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/firebird/files: firebird-2.1.0.17755_rc2-deps-flags-libs.patch firebird-2.1.0.17735_rc1-deps-flags-libs.patch
Date: Tue, 25 Mar 2008 19:54:59
Message-Id: E1JeFEW-000595-DW@stork.gentoo.org
1 wltjr 08/03/25 19:54:56
2
3 Added: firebird-2.1.0.17755_rc2-deps-flags-libs.patch
4 Removed: firebird-2.1.0.17735_rc1-deps-flags-libs.patch
5 Log:
6 Bumped to latest rc, removed previous rc. No progress on bug # 19766 :(, still hangs on create_db on some amd64 machines.
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.1 dev-db/firebird/files/firebird-2.1.0.17755_rc2-deps-flags-libs.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird-2.1.0.17755_rc2-deps-flags-libs.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird-2.1.0.17755_rc2-deps-flags-libs.patch?rev=1.1&content-type=text/plain
14
15 Index: firebird-2.1.0.17755_rc2-deps-flags-libs.patch
16 ===================================================================
17 diff -Naur Firebird-2.1.0.16780-Beta2_orig/builds/posix/Makefile.in.firebird Firebird-2.1.0.16780-Beta2/builds/posix/Makefile.in.firebird
18 --- Firebird-2.1.0.16780-Beta2_orig/builds/posix/Makefile.in.firebird 2007-10-19 11:11:36.000000000 -0400
19 +++ Firebird-2.1.0.16780-Beta2/builds/posix/Makefile.in.firebird 2007-11-14 13:43:55.000000000 -0500
20 @@ -185,14 +185,7 @@
21 #
22
23 external_libraries:
24 -ifeq ($(STD_ICU),false)
25 - $(MAKE) -f $(GEN_ROOT)/Makefile.extern.icu
26 -endif
27 -ifeq ($(STD_EDITLINE),false)
28 -ifeq ($(EDITLINE_FLG),Y)
29 - $(MAKE) -f $(GEN_ROOT)/Makefile.extern.editline
30 -endif
31 -endif
32 +
33
34 btyacc_binary: $(BTYACC)
35
36 diff -Naur Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.defaults Firebird-2.1.0.16780-Beta2/builds/posix/make.defaults
37 --- Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.defaults 2007-10-19 11:11:36.000000000 -0400
38 +++ Firebird-2.1.0.16780-Beta2/builds/posix/make.defaults 2007-11-14 13:44:39.000000000 -0500
39 @@ -229,11 +229,7 @@
40 LIBFBSTATIC_A = $(LIB)/libfbstatic.a
41
42 ifeq ($(EDITLINE_FLG),Y)
43 - ifeq ($(STD_EDITLINE), true)
44 - LIBEDITLINE := -leditline
45 - else
46 - LIBEDITLINE := $(LIB)/libeditline.a
47 - endif
48 + LIBEDITLINE := -ledit
49 endif
50
51 LIBICU_SO = $(LIB)/$(LIB_PREFIX)icuuc.$(SHRLIB_EXT) \
52 diff -Naur Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.rules Firebird-2.1.0.16780-Beta2/builds/posix/make.rules
53 --- Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.rules 2007-11-14 14:29:58.000000000 -0500
54 +++ Firebird-2.1.0.16780-Beta2/builds/posix/make.rules 2007-11-14 14:30:13.000000000 -0500
55 @@ -33,9 +33,6 @@
56
57 # Please don't use compiler/platform specific flags here - nmcc 02-Nov-2002
58 CFLAGS:= $(CFLAGS) -I$(SRC_ROOT)/include/gen -I$(SRC_ROOT)/include -I$(SRC_ROOT)/vulcan -DNAMESPACE=Vulcan
59 -ifeq ($(STD_ICU),false)
60 - CFLAGS:= $(CFLAGS) -I$(ROOT)/extern/icu/source/common -I$(ROOT)/extern/icu/source/i18n
61 -endif
62
63 ifeq ($(IsProdTypeBuild),Y)
64 CFLAGS:= $(CFLAGS) $(PROD_FLAGS) -DPROD_BUILD
65 @@ -69,19 +66,19 @@
66
67 .SUFFIXES: .c .e .epp .cpp
68
69 -.e.c:
70 +.e.c: $(GPRE_CURRENT)
71 $(GPRE_CURRENT) $(GPRE_FLAGS) $< $@
72
73
74 -.epp.cpp:
75 +.epp.cpp: $(GPRE_CURRENT)
76 $(GPRE_CURRENT) $(GPRE_FLAGS) $< $@
77
78
79 -$(SRC_ROOT)/jrd/%.cpp:: $(SRC_ROOT)/jrd/%.epp
80 +$(SRC_ROOT)/jrd/%.cpp:: $(SRC_ROOT)/jrd/%.epp $(GPRE_CURRENT)
81 $(GPRE_CURRENT) $(JRD_GPRE_FLAGS) $< $@
82
83
84 -$(SRC_ROOT)/dsql/%.cpp:: $(SRC_ROOT)/dsql/%.epp
85 +$(SRC_ROOT)/dsql/%.cpp:: $(SRC_ROOT)/dsql/%.epp $(GPRE_CURRENT)
86 $(GPRE_CURRENT) $(DSQL_GPRE_FLAGS) $< $@
87
88
89 diff -Naur Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.shared.targets Firebird-2.1.0.16780-Beta2/builds/posix/make.shared.targets
90 --- Firebird-2.1.0.16780-Beta2_orig/builds/posix/make.shared.targets 2007-10-19 11:11:36.000000000 -0400
91 +++ Firebird-2.1.0.16780-Beta2/builds/posix/make.shared.targets 2007-11-14 13:46:49.000000000 -0500
92 @@ -49,7 +49,7 @@
93
94 # gpre_meta needs a special boot build since there is no database.
95
96 -$(SRC_ROOT)/gpre/gpre_meta.cpp: $(SRC_ROOT)/gpre/gpre_meta.epp
97 +$(SRC_ROOT)/gpre/gpre_meta.cpp: $(SRC_ROOT)/gpre/gpre_meta.epp $(GPRE_BOOT)
98 $(GPRE_BOOT) -lang_internal $(GPRE_FLAGS) $< $@
99
100
101 diff -Naur Firebird-2.1.0.16780-Beta2_orig/builds/posix/prefix.linux Firebird-2.1.0.16780-Beta2/builds/posix/prefix.linux
102 --- Firebird-2.1.0.16780-Beta2_orig/builds/posix/prefix.linux 2007-10-19 11:11:36.000000000 -0400
103 +++ Firebird-2.1.0.16780-Beta2/builds/posix/prefix.linux 2007-11-14 13:47:56.000000000 -0500
104 @@ -21,11 +21,10 @@
105 # -fno-builtin is used because GCC 3.0-3.2.2 had bug with builtins expansion
106 # you may remove it if engine is getting compiled with any other GCC version
107
108 -COMMON_FLAGS=-ggdb -DFB_SEND_FLAGS=MSG_NOSIGNAL -DLINUX -pipe -MMD -fPIC -fmessage-length=0
109 -OPTIMIZE_FLAGS=-O3 -march=i586 -mcpu=i686 -fno-omit-frame-pointer -fno-builtin
110 +COMMON_FLAGS=-ggdb -DLINUX -pipe -MMD -fPIC
111 WARN_FLAGS=-Wall -Wno-switch -Wno-parentheses -Wno-unknown-pragmas -Wno-unused-variable
112
113 -PROD_FLAGS=-DNDEBUG $(COMMON_FLAGS) $(OPTIMIZE_FLAGS)
114 +PROD_FLAGS=-DNDEBUG $(COMMON_FLAGS)
115 DEV_FLAGS=-DUSE_VALGRIND -p $(COMMON_FLAGS) $(WARN_FLAGS)
116 #DEV_FLAGS=-p $(COMMON_FLAGS) $(WARN_FLAGS)
117
118 diff -Naur Firebird-2.1.0.16780-Beta2_orig/configure Firebird-2.1.0.16780-Beta2/configure
119 --- Firebird-2.1.0.16780-Beta2_orig/configure 2007-10-19 11:11:39.000000000 -0400
120 +++ Firebird-2.1.0.16780-Beta2/configure 2007-11-14 13:48:51.000000000 -0500
121 @@ -3928,13 +3928,13 @@
122 # not need editline in default libs, but need to test for its presence
123 saveLIBS=$LIBS
124 if test "$STD_EDITLINE" = "true"; then
125 - { echo "$as_me:$LINENO: checking for readline in -leditline" >&5
126 -echo $ECHO_N "checking for readline in -leditline... $ECHO_C" >&6; }
127 + { echo "$as_me:$LINENO: checking for readline in -ledit" >&5
128 +echo $ECHO_N "checking for readline in -ledit... $ECHO_C" >&6; }
129 if test "${ac_cv_lib_editline_readline+set}" = set; then
130 echo $ECHO_N "(cached) $ECHO_C" >&6
131 else
132 ac_check_lib_save_LIBS=$LIBS
133 -LIBS="-leditline $LIBS"
134 +LIBS="-ledit $LIBS"
135 cat >conftest.$ac_ext <<_ACEOF
136 /* confdefs.h. */
137 _ACEOF
138
139
140
141 --
142 gentoo-commits@l.g.o mailing list