mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 21:00:44 +00:00
* 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:
parent
888396bab3
commit
d9f20d29f7
4 changed files with 17 additions and 6 deletions
11
ChangeLog
11
ChangeLog
|
@ -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):
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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::
|
||||
|
|
|
@ -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::
|
||||
|
|
Loading…
Reference in a new issue