[24629] branches/dp2mp-move/base/src/pextlib1.0
source_changes at macosforge.org
source_changes at macosforge.org
Sat Apr 28 22:12:01 PDT 2007
Revision: 24629
http://trac.macosforge.org/projects/macports/changeset/24629
Author: jmpp at macports.org
Date: 2007-04-28 22:12:00 -0700 (Sat, 28 Apr 2007)
Log Message:
-----------
Missed some dp --> mp renames. Branch configures, makes all, install and distclean.
Modified Paths:
--------------
branches/dp2mp-move/base/src/pextlib1.0/Pextlib.c
branches/dp2mp-move/base/src/pextlib1.0/vercomp.c
branches/dp2mp-move/base/src/pextlib1.0/vercomp.h
branches/dp2mp-move/base/src/pextlib1.0/xinstall.c
Modified: branches/dp2mp-move/base/src/pextlib1.0/Pextlib.c
===================================================================
--- branches/dp2mp-move/base/src/pextlib1.0/Pextlib.c 2007-04-29 03:48:55 UTC (rev 24628)
+++ branches/dp2mp-move/base/src/pextlib1.0/Pextlib.c 2007-04-29 05:12:00 UTC (rev 24629)
@@ -4,7 +4,7 @@
*
* Copyright (c) 2002 - 2003 Apple Computer, Inc.
* Copyright (c) 2004 - 2005 Paul Guyot <pguyot at kallisys.net>
- * Copyright (c) 2004 Landon Fuller <landonf at opendarwin.org>
+ * Copyright (c) 2004 Landon Fuller <landonf at macports.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -657,7 +657,7 @@
int ReaddirCmd(ClientData clientData UNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])
{
DIR *dirp;
- struct dirent *dp;
+ struct dirent *mp;
Tcl_Obj *tcl_result;
char *path;
@@ -673,13 +673,13 @@
return TCL_ERROR;
}
tcl_result = Tcl_NewListObj(0, NULL);
- while ((dp = readdir(dirp))) {
+ while ((mp = readdir(dirp))) {
/* Skip . and .. */
- if ((dp->d_name[0] != '.') ||
- ((dp->d_name[1] != 0) /* "." */
+ if ((mp->d_name[0] != '.') ||
+ ((mp->d_name[1] != 0) /* "." */
&&
- ((dp->d_name[1] != '.') || (dp->d_name[2] != 0)))) /* ".." */ {
- Tcl_ListObjAppendElement(interp, tcl_result, Tcl_NewStringObj(dp->d_name, -1));
+ ((mp->d_name[1] != '.') || (mp->d_name[2] != 0)))) /* ".." */ {
+ Tcl_ListObjAppendElement(interp, tcl_result, Tcl_NewStringObj(mp->d_name, -1));
}
}
closedir(dirp);
Modified: branches/dp2mp-move/base/src/pextlib1.0/vercomp.c
===================================================================
--- branches/dp2mp-move/base/src/pextlib1.0/vercomp.c 2007-04-29 03:48:55 UTC (rev 24628)
+++ branches/dp2mp-move/base/src/pextlib1.0/vercomp.c 2007-04-29 05:12:00 UTC (rev 24629)
@@ -3,10 +3,10 @@
* $Id$
* RPM compatible version comparison
*
- * Author: Landon Fuller <landonf at opendarwin.org>
+ * Author: Landon Fuller <landonf at macports.org>
*
* Copyright (c) 2002 - 2003 Apple Computer, Inc.
- * Copyright (c) 2004 Landon Fuller <landonf at opendarwin.org>
+ * Copyright (c) 2004 Landon Fuller <landonf at macports.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: branches/dp2mp-move/base/src/pextlib1.0/vercomp.h
===================================================================
--- branches/dp2mp-move/base/src/pextlib1.0/vercomp.h 2007-04-29 03:48:55 UTC (rev 24628)
+++ branches/dp2mp-move/base/src/pextlib1.0/vercomp.h 2007-04-29 05:12:00 UTC (rev 24629)
@@ -1,7 +1,7 @@
/*
* vercomp.h
* $Id$
- * Author: Landon Fuller <landonf at opendarwin.org>
+ * Author: Landon Fuller <landonf at macports.org>
*
* Copyright (c) 2002 - 2003 Apple Computer, Inc.
* Copyright (c) 2004 Landon Fuller
Modified: branches/dp2mp-move/base/src/pextlib1.0/xinstall.c
===================================================================
--- branches/dp2mp-move/base/src/pextlib1.0/xinstall.c 2007-04-29 03:48:55 UTC (rev 24628)
+++ branches/dp2mp-move/base/src/pextlib1.0/xinstall.c 2007-04-29 05:12:00 UTC (rev 24629)
@@ -33,7 +33,7 @@
* 2003/12/29:
*
* Substantially revamped from original BSD source to become a Tcl builtin
- * procedure for the Opendarwin Project.
+ * procedure for the MacPorts Project.
* Author: Jordan K. Hubbard
*/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070428/b66da719/attachment.html
More information about the macports-changes
mailing list