This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Allow `.' in version


We can have 6.1 as version. This patch supports it.


H.J.
---
2005-02-10  H.J. Lu  <hongjiu.lu@intel.com>

	* scripts/lib-names.awk: Allow `.' in version.

--- scripts/lib-names.awk.64	2005-02-10 02:29:46.000000000 -0800
+++ scripts/lib-names.awk	2005-02-10 11:56:32.675069401 -0800
@@ -6,7 +6,7 @@ $1 != "DEFAULT" { multi = 1 }
 {
   lib = $2;
   version = $3;
-  if ($3 ~ /[^0-9]/) {
+  if ($3 ~ /[^0-9.]/) {
     soname = $3;
     extra = $3;
     sub(/\.so.*$/, "", extra);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]