********>Bugfix 15
Author: Scott Brozell, reported by Myunggi Yi
Date: 08/24/2006
Programs: ptraj
Description: actions.h has a trailing comma inside an enum declaration.
This is nonstandard, but most compilers allow it.
Fix: apply the following patch to src/ptraj/actions.h
------------------------------------------------------------------------------
*** actions.h 3 Apr 2006 23:35:48 -0000 9.0
--- actions.h 25 Aug 2006 05:06:50 -0000
***************
*** 206,212 ****
typedef enum _transformContactsType {
CONTACTS_NULL = 0,
CONTACTS_FIRST,
! CONTACTS_REFERENCE,
} transformContactsType;
typedef struct _transformContactsInfo {
--- 206,212 ----
typedef enum _transformContactsType {
CONTACTS_NULL = 0,
CONTACTS_FIRST,
! CONTACTS_REFERENCE
} transformContactsType;
typedef struct _transformContactsInfo {
------------------------------------------------------------------------------
Temporary workarounds: none