* EOAdaptors/SQLiteAdaptor/LoginPanel/Makefile.postamble:

Replace spaces with tab.

	* Makefile.postamble: Replace INSTALL_ROOT_DIR with DESTDIR.

	* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
	(_evaluateExpression:withAttributes:):  Use the channel's
	encoding.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@24845 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2007-03-10 12:23:14 +00:00
parent 888396bab3
commit d9f20d29f7
4 changed files with 17 additions and 6 deletions

View file

@ -1,3 +1,14 @@
2007-03-10 David Ayers <ayers@fsfe.org>
* EOAdaptors/SQLiteAdaptor/LoginPanel/Makefile.postamble:
Replace spaces with tab.
* Makefile.postamble: Replace INSTALL_ROOT_DIR with DESTDIR.
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
(_evaluateExpression:withAttributes:): Use the channel's
encoding.
2007-02-22 Manuel Guesdon <mguesdon@orange-concept.com>
* EOAccess/EODatabaseContext.h (recordChangesInEditingContext):

View file

@ -982,7 +982,7 @@ zone:zone
//call PostgreSQLChannel numberOfAffectedRows
/* Send the expression to the SQL server */
_pgResult = PQexec(_pgConn, (char *)[[[expression statement] stringByAppendingString:@";"] cString]); // stephane@sente.ch: We need to add ; for INSERT, at least
_pgResult = PQexec(_pgConn, (char *)[[[expression statement] stringByAppendingString:@";"] cStringUsingEncoding: encoding]);
NSDebugMLLog(@"gsdb", @"_pgResult=%p", (void*)_pgResult);
if (_pgResult == NULL)

View file

@ -37,7 +37,7 @@
ifneq ($(GUI_MAKE_LOADED),yes)
ifneq ($(GUI_LIB),apple)
before-all::
@echo Skipping login panel compilation. GNUstep gui not installed.
@echo Skipping login panel compilation. GNUstep gui not installed.
endif
endif
#before-all::

View file

@ -47,20 +47,20 @@
# you install into a fake system tree, and the directory is not there.
#
$(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary:
$(DESTDIR)$(GNUSTEP_MAKEFILES)/Auxiliary:
$(MKINSTALLDIRS) $@
# Things to do after installing
after-install:: $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary
after-install:: $(DESTDIR)$(GNUSTEP_MAKEFILES)/Auxiliary
$(INSTALL_DATA) gdl2.make \
$(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
$(DESTDIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
# Things to do before uninstalling
# before-uninstall::
# Things to do after uninstalling
after-uninstall::
rm -f $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
rm -f $(DESTDIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
# Things to do before cleaning
# before-clean::